home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dlangb.z / dlangb
Encoding:
Text File  |  2002-10-03  |  4.0 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDLLLLAAAANNNNGGGGBBBB((((3333SSSS))))                                                          DDDDLLLLAAAANNNNGGGGBBBB((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DLANGB - return the value of the one norm, or the Frobenius norm, or the
  10.      infinity norm, or the element of largest absolute value of an n by n band
  11.      matrix A, with kl sub-diagonals and ku super-diagonals
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      DOUBLE PRECISION FUNCTION DLANGB( NORM, N, KL, KU, AB, LDAB, WORK )
  15.  
  16.          CHARACTER    NORM
  17.  
  18.          INTEGER      KL, KU, LDAB, N
  19.  
  20.          DOUBLE       PRECISION AB( LDAB, * ), WORK( * )
  21.  
  22. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  23.      These routines are part of the SCSL Scientific Library and can be loaded
  24.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  25.      directs the linker to use the multi-processor version of the library.
  26.  
  27.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  28.      4 bytes (32 bits). Another version of SCSL is available in which integers
  29.      are 8 bytes (64 bits).  This version allows the user access to larger
  30.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  31.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  32.      only one of the two versions; 4-byte integer and 8-byte integer library
  33.      calls cannot be mixed.
  34.  
  35. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  36.      DLANGB returns the value of the one norm, or the Frobenius norm, or the
  37.      infinity norm, or the element of largest absolute value of an n by n band
  38.      matrix A, with kl sub-diagonals and ku super-diagonals.
  39.  
  40. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  41.      DLANGB returns the value
  42.  
  43.         DLANGB = ( max(abs(A(i,j))), NORM = 'M' or 'm'
  44.                  (
  45.                  ( norm1(A),         NORM = '1', 'O' or 'o'
  46.                  (
  47.                  ( normI(A),         NORM = 'I' or 'i'
  48.                  (
  49.                  ( normF(A),         NORM = 'F', 'f', 'E' or 'e'
  50.  
  51.      where  norm1  denotes the  one norm of a matrix (maximum column sum),
  52.      normI  denotes the  infinity norm  of a matrix  (maximum row sum) and
  53.      normF  denotes the  Frobenius norm of a matrix (square root of sum of
  54.      squares).  Note that  max(abs(A(i,j)))  is not a  matrix norm.
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDLLLLAAAANNNNGGGGBBBB((((3333SSSS))))                                                          DDDDLLLLAAAANNNNGGGGBBBB((((3333SSSS))))
  71.  
  72.  
  73.  
  74. ARGUMENTS
  75.      NORM    (input) CHARACTER*1
  76.              Specifies the value to be returned in DLANGB as described above.
  77.  
  78.      N       (input) INTEGER
  79.              The order of the matrix A.  N >= 0.  When N = 0, DLANGB is set to
  80.              zero.
  81.  
  82.      KL      (input) INTEGER
  83.              The number of sub-diagonals of the matrix A.  KL >= 0.
  84.  
  85.      KU      (input) INTEGER
  86.              The number of super-diagonals of the matrix A.  KU >= 0.
  87.  
  88.      AB      (input) DOUBLE PRECISION array, dimension (LDAB,N)
  89.              The band matrix A, stored in rows 1 to KL+KU+1.  The j-th column
  90.              of A is stored in the j-th column of the array AB as follows:
  91.              AB(ku+1+i-j,j) = A(i,j) for max(1,j-ku)<=i<=min(n,j+kl).
  92.  
  93.      LDAB    (input) INTEGER
  94.              The leading dimension of the array AB.  LDAB >= KL+KU+1.
  95.  
  96.      WORK    (workspace) DOUBLE PRECISION array, dimension (LWORK),
  97.              where LWORK >= N when NORM = 'I'; otherwise, WORK is not
  98.              referenced.
  99.  
  100. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  101.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  102.  
  103.      This man page is available only online.
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.